home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmMain
- Caption = "Parse Demo Main Menu"
- ClientHeight = 3240
- ClientLeft = 1470
- ClientTop = 1725
- ClientWidth = 6960
- Height = 3675
- Icon = MAIN.FRX:0000
- Left = 1395
- LinkTopic = "Form1"
- ScaleHeight = 3240
- ScaleWidth = 6960
- Top = 1365
- Width = 7110
- Begin CommandButton cmdAbout
- Caption = "&About"
- Height = 375
- Left = 5520
- TabIndex = 3
- Top = 2640
- Width = 1215
- End
- Begin CommandButton cmdExit
- Caption = "E&xit"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 495
- Left = 1800
- TabIndex = 2
- Top = 1860
- Width = 3315
- End
- Begin CommandButton cmdDelim
- Caption = "&Multiple Character Delimiter Parsing"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 495
- Left = 1140
- TabIndex = 1
- Top = 1200
- Width = 4755
- End
- Begin CommandButton cmdParse
- Caption = "&Parse / Process Text"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 495
- Left = 1860
- TabIndex = 0
- Top = 540
- Width = 3315
- End
- Option Explicit
- Sub cmdAbout_Click ()
- Dim x%
- x% = Shell("notepad " & App.Path & "\parseme2.txt", 3)
- End Sub
- Sub cmdDelim_Click ()
- Me.WindowState = MINIMIZED
- Screen.MousePointer = HOURGLASS
- SetfrmSelect "", FLG_MULTIDELIM
- End Sub
- Sub cmdExit_Click ()
- EndProg
- End Sub
- Sub cmdParse_Click ()
- Me.WindowState = MINIMIZED
- SetfrmSelect "", FLG_PROCPARSE
- End Sub
-